Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit 2b854f7c5ceb18ccc463e89433dfecdcef61c439


Parents : 2342d62
Author : Sudo-Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-01-16T09:34:18-06:00

Code Cleanup

Changes
Diff

diff --git a/tests/backend/test_concurrency_stress.py b/tests/backend/test_concurrency_stress.py
index 4026325f..6d430aed 100644
--- a/tests/backend/test_concurrency_stress.py
+++ b/tests/backend/test_concurrency_stress.py
@@ -103,7 +103,7 @@ class TestConcurrencyStress(unittest.TestCase):
# Assert no errors occurred in threads
if self.errors:
- self.fail(f"Errors occurred in threads: \n" + "\n".join(self.errors))
+ self.fail("Errors occurred in threads: \n" + "\n".join(self.errors))
# Check if we ended up with the expected number of messages
total = self.db.provider.fetchone(
@@ -142,7 +142,7 @@ class TestConcurrencyStress(unittest.TestCase):
# Assert no errors occurred
if self.errors:
- self.fail(f"Errors occurred in threads: \n" + "\n".join(self.errors))
+ self.fail("Errors occurred in threads: \n" + "\n".join(self.errors))
identities = manager.list_identities()
self.assertEqual(len(identities), 20, "Should have created 20 identities")

diff --git a/tests/backend/test_integrity.py b/tests/backend/test_integrity.py
index da9748ed..b29b6ea9 100644
--- a/tests/backend/test_integrity.py
+++ b/tests/backend/test_integrity.py
@@ -1,7 +1,6 @@
import shutil
import tempfile
import unittest
-import os
import sqlite3
from pathlib import Path

diff --git a/tests/backend/test_integrity_extensive.py b/tests/backend/test_integrity_extensive.py
index f9c17d9d..14202a4a 100644
--- a/tests/backend/test_integrity_extensive.py
+++ b/tests/backend/test_integrity_extensive.py
@@ -3,7 +3,6 @@ import tempfile
import unittest
import os
import sqlite3
-import math
import json
from pathlib import Path
from hypothesis import given, strategies as st, settings, HealthCheck


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────